Eclipse Platform
Pre-release 3.0

org.eclipse.jface.progress
Interface IElementCollector


public interface IElementCollector

IElementCollector is a type that allows for the incremental update of a collection of objects. This interface is not intended to be implemented by other plug-ins.


Method Summary
 void add(Object[] elements, IProgressMonitor monitor)
          Add elements to the IElementCollector.
 void add(Object element, IProgressMonitor monitor)
          Add element to the IElementCollector.
 void done()
          The element collection is done.
 

Method Detail

add

public void add(Object element,
                IProgressMonitor monitor)
Add element to the IElementCollector.

Parameters:
element -
monitor -

add

public void add(Object[] elements,
                IProgressMonitor monitor)
Add elements to the IElementCollector.

Parameters:
monitor -

done

public void done()
The element collection is done. Clean up any temporary state.


Eclipse Platform
Pre-release 3.0

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.